home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / hsc / examples / fetzenschaedl / Makefile < prev    next >
Makefile  |  1997-06-02  |  581b  |  34 lines

  1. #
  2. # makefile for hsc example project
  3. #
  4.  
  5. #
  6. # NOTE: this makefile is prepared for use under AmigaOS (default) and
  7. #    Unix. To enable the Unix-version, enable the second 
  8. #    definition of the symbol `HSC'.
  9. #
  10.  
  11. #
  12. # command used to envoke hsc
  13. #
  14. HSC    = //hsc
  15. #HSC    = ../../hsc
  16.  
  17. #
  18. # options for hsc
  19. #
  20. HSCOPTS   = TO= STATUS=line|verbose
  21.  
  22. all : stupid.html hugo/hugo.html main.html 
  23.  
  24. main.html : main.hsc macro.hsc
  25.     $(HSC) $(HSCOPTS) main.hsc 
  26.  
  27. stupid.html : stupid.hsc macro.hsc
  28.     $(HSC) $(HSCOPTS) stupid.hsc 
  29.  
  30. hugo/hugo.html : hugo/hugo.hsc macro.hsc
  31.     $(HSC) $(HSCOPTS) hugo/hugo.hsc 
  32.  
  33. # EOF
  34.